home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / metata1a / frmabout.frm (.txt) next >
Visual Basic Form  |  1999-10-18  |  3KB  |  80 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BackColor       =   &H00FFFFFF&
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "Meta Tags- About"
  6.    ClientHeight    =   3360
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4785
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   3360
  14.    ScaleWidth      =   4785
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   3  'Windows Default
  17.    Begin VB.Frame Frame1 
  18.       BackColor       =   &H00FFFFFF&
  19.       Height          =   3015
  20.       Left            =   120
  21.       TabIndex        =   0
  22.       Top             =   120
  23.       Width           =   4455
  24.       Begin VB.CommandButton Command1 
  25.          Caption         =   "Close"
  26.          Height          =   375
  27.          Left            =   3120
  28.          TabIndex        =   2
  29.          Top             =   2520
  30.          Width           =   1095
  31.       End
  32.       Begin VB.Label Label2 
  33.          AutoSize        =   -1  'True
  34.          BackStyle       =   0  'Transparent
  35.          Caption         =   "Copyright (c) 1999, Nick Bodmer"
  36.          Height          =   195
  37.          Left            =   360
  38.          TabIndex        =   3
  39.          Top             =   2640
  40.          Width           =   2295
  41.       End
  42.       Begin VB.Image Image1 
  43.          Height          =   1815
  44.          Left            =   960
  45.          Picture         =   "frmAbout.frx":0000
  46.          Top             =   120
  47.          Width           =   2685
  48.       End
  49.       Begin VB.Label Label1 
  50.          BackStyle       =   0  'Transparent
  51.          Caption         =   "This program is shareware and may be freely destributed as long as it and any files accompaning it remain intact."
  52.          Height          =   915
  53.          Left            =   360
  54.          TabIndex        =   1
  55.          Top             =   1920
  56.          Width           =   3810
  57.       End
  58.    End
  59.    Begin VB.Label Label3 
  60.       AutoSize        =   -1  'True
  61.       BackStyle       =   0  'Transparent
  62.       Caption         =   "Ver 1.00"
  63.       Height          =   195
  64.       Left            =   3960
  65.       TabIndex        =   4
  66.       Top             =   3120
  67.       Width           =   600
  68.    End
  69. Attribute VB_Name = "frmAbout"
  70. Attribute VB_GlobalNameSpace = False
  71. Attribute VB_Creatable = False
  72. Attribute VB_PredeclaredId = True
  73. Attribute VB_Exposed = False
  74. Private Sub Command1_Click()
  75.     Unload Me
  76. End Sub
  77. Private Sub Form_Unload(Cancel As Integer)
  78.     frmMain.Show
  79. End Sub
  80.